home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / mozilla-firefox / include / appcomps / nsICloseAllWindows.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-05-08  |  2.5 KB  |  94 lines

  1. /*
  2.  * DO NOT EDIT.  THIS FILE IS GENERATED FROM nsICloseAllWindows.idl
  3.  */
  4.  
  5. #ifndef __gen_nsICloseAllWindows_h__
  6. #define __gen_nsICloseAllWindows_h__
  7.  
  8.  
  9. #ifndef __gen_nsISupports_h__
  10. #include "nsISupports.h"
  11. #endif
  12.  
  13. /* For IDL files that don't want to include root IDL files. */
  14. #ifndef NS_NO_VTABLE
  15. #define NS_NO_VTABLE
  16. #endif
  17.  
  18. /* starting interface:    nsICloseAllWindows */
  19. #define NS_ICLOSEALLWINDOWS_IID_STR "2f977d49-5485-11d4-87e2-0010a4e75ef2"
  20.  
  21. #define NS_ICLOSEALLWINDOWS_IID \
  22.   {0x2f977d49, 0x5485, 0x11d4, \
  23.     { 0x87, 0xe2, 0x00, 0x10, 0xa4, 0xe7, 0x5e, 0xf2 }}
  24.  
  25. class NS_NO_VTABLE nsICloseAllWindows : public nsISupports {
  26.  public: 
  27.  
  28.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_ICLOSEALLWINDOWS_IID)
  29.  
  30.   /**
  31.      * Closes all open windows, optionally asking to confirm changes if any.
  32.      * @return TRUE if the user does not cancel from any confirmation dialog.
  33.      */
  34.   /* boolean closeAll (in boolean askSave); */
  35.   NS_IMETHOD CloseAll(PRBool askSave, PRBool *_retval) = 0;
  36.  
  37. };
  38.  
  39. /* Use this macro when declaring classes that implement this interface. */
  40. #define NS_DECL_NSICLOSEALLWINDOWS \
  41.   NS_IMETHOD CloseAll(PRBool askSave, PRBool *_retval); 
  42.  
  43. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  44. #define NS_FORWARD_NSICLOSEALLWINDOWS(_to) \
  45.   NS_IMETHOD CloseAll(PRBool askSave, PRBool *_retval) { return _to CloseAll(askSave, _retval); } 
  46.  
  47. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  48. #define NS_FORWARD_SAFE_NSICLOSEALLWINDOWS(_to) \
  49.   NS_IMETHOD CloseAll(PRBool askSave, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->CloseAll(askSave, _retval); } 
  50.  
  51. #if 0
  52. /* Use the code below as a template for the implementation class for this interface. */
  53.  
  54. /* Header file */
  55. class nsCloseAllWindows : public nsICloseAllWindows
  56. {
  57. public:
  58.   NS_DECL_ISUPPORTS
  59.   NS_DECL_NSICLOSEALLWINDOWS
  60.  
  61.   nsCloseAllWindows();
  62.  
  63. private:
  64.   ~nsCloseAllWindows();
  65.  
  66. protected:
  67.   /* additional members */
  68. };
  69.  
  70. /* Implementation file */
  71. NS_IMPL_ISUPPORTS1(nsCloseAllWindows, nsICloseAllWindows)
  72.  
  73. nsCloseAllWindows::nsCloseAllWindows()
  74. {
  75.   /* member initializers and constructor code */
  76. }
  77.  
  78. nsCloseAllWindows::~nsCloseAllWindows()
  79. {
  80.   /* destructor code */
  81. }
  82.  
  83. /* boolean closeAll (in boolean askSave); */
  84. NS_IMETHODIMP nsCloseAllWindows::CloseAll(PRBool askSave, PRBool *_retval)
  85. {
  86.     return NS_ERROR_NOT_IMPLEMENTED;
  87. }
  88.  
  89. /* End of implementation class template. */
  90. #endif
  91.  
  92.  
  93. #endif /* __gen_nsICloseAllWindows_h__ */
  94.